computer programs - определение. Что такое computer programs
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое computer programs - определение

SEQUENCE OF INSTRUCTIONS WRITTEN IN PROGRAMMING LANGUAGE TO PERFORM A SPECIFIED TASK WITH A COMPUTER
Computer programme; Computer code; Computer programs; Software program; Program (programming); Program (computer science); Program (computing); Computer Program; Software code; Program (computer); Computer Programs; Program file; Computer program code; Program module
  • A symbolic representation of an ALU
  • Computer memory map
  • 400x400px
  • DEC]] [[VT100]] (1978) was a widely used [[computer terminal]].
  • Switches for manual input on a [[Data General Nova]] 3, manufactured in the mid-1970s
  • Lovelace's description from Note G
  • [["Hello, World!" program]] by [[Brian Kernighan]] (1978)
  • A kernel connects the application software to the hardware of a computer.
  • NOT gate
  • A computer program written in an imperative language
  • hardware]].
  • Artist's depiction of Sacramento State University's Intel 8008 microcomputer (1972)
  • A sample function-level data-flow diagram
  • Fran Bilas]] programmed the [[ENIAC]] by moving cables and setting switches.
  • right
  • Physical memory is scattered around RAM and the hard disk. Virtual memory is one continuous block.
Найдено результатов: 4424
computer program         
Computer program         
A computer program is a sequence or set of instructions in a programming language for a computer to execute. Computer programs are one component of software, which also includes documentation and other intangible components.
Stored-program computer         
COMPUTER WHICH CAN OPERATE UPON ITS OWN PROGRAMMING AS DATA
Stored program; Stored program architecture; Stored-program; Stored program computer; Stored-program computers; Storedprogram computer; Stored program computers; Storedprogram computers; Storedprogram; Stored programs; Programmable computer
A stored-program computer is a computer that stores program instructions in electronically or optically accessible memory. This contrasts with systems that stored the program instructions with plugboards or similar mechanisms.
Computer Go         
FIELD OF ARTIFICIAL INTELLIGENCE DEDICATED TO CREATING A COMPUTER PROGRAM THAT PLAYS GO
Computer go; Computer Go programming; Computer go programming; Go client; MyGoFriend; Go programs; List of Go-playing computer programs; Computer weiqi; Computer baduk
Computer Go is the field of artificial intelligence (AI) dedicated to creating a computer program that plays the traditional board game Go. The field is sharply divided into two eras.
The Art of Computer Programming         
  • Donald Knuth in 2005
BOOKS ABOUT ALGORITHMS BY DONALD KNUTH
TAOCP; Art of Computer Programming; TAoCP; The art of programming; TAOP; AoCP; AOCP; The art of computer programming; Knuth's TAOCP; TAOCP (book)
The Art of Computer Programming (TAOCP) is a comprehensive monograph written by the computer scientist Donald Knuth presenting programming algorithms and their analysis. Volumes 1–5 are intended to represent the central core of computer programming for sequential machines.
Hot spot (computer programming)         
COMPUTER SCIENCE TERM
Hotspot (computer science); Hot spot (computer science); Hotspot (computer programming)
A hot spot in computer science is most usually defined as a region of a computer program where a high proportion of executed instructions occur or where most time is spent during the program's execution (not necessarily the same thing since some instructions are faster than others).
Computer programming         
  • [[Ada Lovelace]], whose notes added to the end of [[Luigi Menabrea]]'s paper included the first [[algorithm]] designed for processing by an [[Analytical Engine]]. She is often recognized as history's first computer programmer.
  •  date = July 15, 2020}}</ref> "Bug" was already a common term for a software defect when this insect was found.
  • control panel]] for an [[IBM 402 Accounting Machine]]. Wires connect pulse streams from the card reader to counters and other internal logic and ultimately to the printer.
  • Data and instructions were once stored on external [[punched card]]s, which were kept in order and arranged in program decks.
THE PROCESS OF DESIGNING AND BUILDING AN EXECUTABLE COMPUTER PROGRAM TO ACCOMPLISH A SPECIFIC COMPUTING RESULT OR TO PERFORM A SPECIFIC TASK
ProgramMing; Software programming; Application programming; Systems level programming; Computer Programming; Proramming; IT programming; Computer coding; Code readability; Indie development studio; History of computer programming; Human readable code; Readable code; Human-readable code
Computer programming is the process of performing a particular computation (or more generally, accomplishing a specific computing result), usually by designing and building an executable computer program. Programming involves tasks such as analysis, generating algorithms, profiling algorithms' accuracy and resource consumption, and the implementation of algorithms (usually in a chosen programming language, commonly referred to as coding).
Computer scientist         
ONE WHO STUDIES OR PRACTISES COMPUTER SCIENCE
Computer Scientists; Computer Scientist; Computer researcher
A computer scientist is a person who has acquired the knowledge of computer science, the study of the theoretical foundations of information and computation and their application.
Computer network programming         
WRITING COMPUTER PROGRAMS WITH NETWORKING CAPABILITY
Socket programing; Socket programming; Network programming, (computer); Network programming (computer)
Computer network programming involves writing computer programs that enable processes to communicate with each other across a computer network.
Transistor computer         
  • [[IBM 1620]]
  • TRADIC
TYPE OF A COMPUTER
Second generation computer; Transistorized computer
A transistor computer, now often called a second-generation computer, is a computer which uses discrete transistors instead of vacuum tubes. The first generation of electronic computers used vacuum tubes, which generated large amounts of heat, were bulky and unreliable.

Википедия

Computer program

A computer program is a sequence or set of instructions in a programming language for a computer to execute. Computer programs are one component of software, which also includes documentation and other intangible components.

A computer program in its human-readable form is called source code. Source code needs another computer program to execute because computers can only execute their native machine instructions. Therefore, source code may be translated to machine instructions using the language's compiler. (Assembly language programs are translated using an assembler.) The resulting file is called an executable. Alternatively, source code may execute within the language's interpreter.

If the executable is requested for execution, then the operating system loads it into memory and starts a process. The central processing unit will soon switch to this process so it can fetch, decode, and then execute each machine instruction.

If the source code is requested for execution, then the operating system loads the corresponding interpreter into memory and starts a process. The interpreter then loads the source code into memory to translate and execute each statement. Running the source code is slower than running an executable. Moreover, the interpreter must be installed on the computer.